decoct
Convert decimal to octal
decoct()
function converts decimal to octal.
<?php echo decoct ( "30" ) ; echo decoct ( "10" ) ; echo decoct ( "1587" ) ; echo decoct ( "70" ) ; ?>
Try it yourself
decoct ( dec_number )
parameter | describe |
---|---|
dec_number | Required. Specifies the decimal number to be converted. |
Returns a string containing an octal representation of the given dec_number parameter. The maximum value that can be converted is 4294967295 in decimal, and the result is "3777777777777".